ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Tags
    3. focused inbox
    Log in to post
    • All categories
    • bbigfordB

      Disable your Outlook Focused Inbox

      IT Discussion
      • exchange outlook email office 365 o365 focused inbox microsoft clutter • • bbigford
      5
      4
      Votes
      5
      Posts
      2.2k
      Views

      dbeatoD

      @NerdyDad thanks, I read the article before and then forgot... thanks.

    • KellyK

      Clutter vs Focused Inbox: Office 365

      Water Closet
      • office 365 clutter focused inbox • • Kelly
      17
      2
      Votes
      17
      Posts
      2.7k
      Views

      NerdyDadN

      To disable for individual users:

      Set-clutter -identity [email protected] -Enable $false

      For an entire organization (tenant)

      Get-Mailbox | Set-Clutter -Enable $false

      You do have to be signed into your O365 environment by PowerShell:

      $session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri "https://outlook.office365.com/powershell-liveid/" -Credential $cred -Authentication Basic -AllowRedirection

      It will ask you to authenticate. Use your normal creds.

      Import-PSSession $session
      You will see another module load and you're in to run the above scripts.

    • 1 / 1